GtkSettings: fully undeprecate blink settings
authorMatthias Clasen <mclasen@redhat.com>
Thu, 3 Jul 2014 12:34:02 +0000 (08:34 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 3 Jul 2014 12:35:34 +0000 (08:35 -0400)
We decided in f8412eca34be6e2e655ad3e09bd97fa2bdcbdae0 that
we still need to react to these for a11y reasons, but left
the (then) harmless property deprecation in place. Now, the
deprecation causes runtime warnings for merely reading the
property, so drop it.

https://bugzilla.gnome.org/show_bug.cgi?id=732667

gtk/gtksettings.c

index 26e8be7cc4762f71f5fea449b5d1ddedf04efebe..361334a2db6522a8537d01d1fb22e8c66c3fcc66 100644 (file)
@@ -393,7 +393,7 @@ gtk_settings_class_init (GtkSettingsClass *class)
                                                                    P_("Cursor Blink"),
                                                                    P_("Whether the cursor should blink"),
                                                                    TRUE,
-                                                                   GTK_PARAM_READWRITE | G_PARAM_DEPRECATED),
+                                                                   GTK_PARAM_READWRITE ),
                                              NULL);
   g_assert (result == PROP_CURSOR_BLINK);
   result = settings_install_property_parser (class,
@@ -401,7 +401,7 @@ gtk_settings_class_init (GtkSettingsClass *class)
                                                                P_("Cursor Blink Time"),
                                                                P_("Length of the cursor blink cycle, in milliseconds"),
                                                                100, G_MAXINT, 1200,
-                                                               GTK_PARAM_READWRITE | G_PARAM_DEPRECATED),
+                                                               GTK_PARAM_READWRITE),
                                              NULL);
   g_assert (result == PROP_CURSOR_BLINK_TIME);
 
@@ -421,7 +421,7 @@ gtk_settings_class_init (GtkSettingsClass *class)
                                                                P_("Cursor Blink Timeout"),
                                                                P_("Time after which the cursor stops blinking, in seconds"),
                                                                1, G_MAXINT, 10,
-                                                               GTK_PARAM_READWRITE | G_PARAM_DEPRECATED),
+                                                               GTK_PARAM_READWRITE),
                                              NULL);
   g_assert (result == PROP_CURSOR_BLINK_TIMEOUT);
   result = settings_install_property_parser (class,